home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2001-10-22 | 1.1 KB | 53 lines |
- "FILE"="Xteq Systems X-Setup Plugin 5.0"
- "TYPE"="6"
- "COUNT"="1"
- "UIPATH"="Program Options\Other Programs\Visual C++"
- "NAME"="DMP Files"
- "VERSION"="1.00"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Enable *.DMP files to be opened"
- "DESCRIPTION 1"="By default, Visual C++ 6.0 does not allow you to open DMP (Crash-Dump Files)"
- "DESCRIPTION 2"="Enabling this option allows you to open those *.DMP files with C++"
- "AUTHOR"="Xteq Systems"
- "CONTACTURL"="http://www.xteq.com/"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"="from Microsoft System Journal 5/2001"
-
-
-
- sP1="HKCU\Software\Microsoft\DevStudio\6.0\"
- sV1="Debug"
- Sub Plugin_Initialize
- if RegPathExists(sP1)=true then
- s=RegReadValue(sP1 & sV1)
- if s="1" then
- SetUIElement 1,true
- end if
- else
- Call Disable()
- end if
- End Sub
-
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
-
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- b=GetUIElement(1)
- if b=true then
- Call RegWriteValue(sP1 & sV1,"1",2)
- else
- Call RegWriteValue(sP1 & sV1,"0",2)
- end if
-
- End Sub
-
-
- Sub Plugin_Terminate
- End Sub
-
-
-
-